summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/service/storage.cpp
blob: 25ee0afbdb6c778038520dfc415454136f907d36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "core/hle/service/am/am_results.h"
#include "core/hle/service/am/library_applet_storage.h"
#include "core/hle/service/am/service/storage.h"
#include "core/hle/service/am/service/storage_accessor.h"
#include "core/hle/service/cmif_serialization.h"

namespace Service::AM {

IStorage::IStorage(Core::System& system_, std::shared_ptr<LibraryAppletStorage> impl)
    : ServiceFramework{system_, "IStorage"}, m_impl{std::move(impl)} {
    static const FunctionInfo functions[] = {
        {0, D<&IStorage::Open>, "Open"},
        {1, D<&IStorage::OpenTransferStorage>, "OpenTransferStorage"},
    };

    RegisterHandlers(functions);
}

IStorage::IStorage(Core::System& system_, std::vector<u8>&& data)
    : IStorage(system_, CreateStorage(std::move(data))) {}

IStorage::~IStorage() = default;

Result IStorage::Open(Out<SharedPointer<IStorageAccessor>> out_storage_accessor) {
    LOG_DEBUG(Service_AM, "called");

    R_UNLESS(m_impl->GetHandle() == nullptr, AM::ResultInvalidStorageType);

    *out_storage_accessor = std::make_shared<IStorageAccessor>(system, m_impl);
    R_SUCCEED();
}

Result IStorage::OpenTransferStorage(
    Out<SharedPointer<ITransferStorageAccessor>> out_transfer_storage_accessor) {
    R_UNLESS(m_impl->GetHandle() != nullptr, AM::ResultInvalidStorageType);

    *out_transfer_storage_accessor = std::make_shared<ITransferStorageAccessor>(system, m_impl);
    R_SUCCEED();
}

std::vector<u8> IStorage::GetData() const {
    return m_impl->GetData();
}

} // namespace Service::AM